@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Almarai", sans-serif;
}

button,
.btn,
input,
textarea {
  box-shadow: none !important;
}
a {
  text-decoration: none;
}

/* top-sec start */

.top-sec {
  background: rgba(229, 241, 254, 0.2);
  margin-bottom: 10rem;
  position: relative;
}
.shap1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.shap2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.shap3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-sec h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  color: #185cff;
}

.top-sec .btn-primary {
  background: #185cff;
  border: 1px solid #185cff;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.2px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.top-sec .btn-primary:hover {
  background-color: #252b42;
  border: 1px solid #252b42;
}

.top-sec .navbar-light .nav-toggle {
  font-size: 30px !important;
  font-weight: bold;
  display: block;
  color: #737373;
}
@media (min-width: 992px) {
  .top-sec .navbar-light .nav-toggle {
    display: none;
  }
}

.end-btn {
  display: flex;
}
.end-btn1 {
  display: none;
}

@media (max-width: 779px) {
  .end-btn {
    display: none;
  }
  .end-btn1 {
    display: flex;
  }
}

#myheader {
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white !important;
  height: 90px;
  box-shadow: -1px 0px 5px rgb(57 63 72 / 30%) !important;
  transition: display 5s 3s ease !important;
  z-index: 2;
}

.sticky > .nav {
  padding-top: 0px !important;
}

.offcanvas-body .nav-link {
  height: 20px !important;
}

.top-sec .login-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  color: #185cff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.top-sec .login-btn:hover {
  color: #252b42;
}

.top-sec .navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #737373;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  padding-right: 0px;
}
.top-sec .navbar-nav .nav-link:hover {
  color: #0353b4;
}

/* top-sec end */

/* form-sec start */

.form-sec {
  margin-bottom: 10rem;
}

.form-sec h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.015em;
  color: #252b42;
}
.form-sec h2 span {
  color: #185cff;
}

.form-sec input,
.form-sec textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-sec input:focus,
.form-sec input:active,
.form-sec textarea:focus,
.form-sec textarea:active {
  border-color: #185cff;
}

.form-sec label {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  letter-spacing: 0.3px;
  color: #1a202c;
}

.form-sec input::placeholder,
.form-sec textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: right;
  letter-spacing: 0.3px;
  color: #1a202c;
  padding-bottom: 10px;
}

.form-sec .btn-primary {
  background: #185cff;
  border: 1px solid #185cff;
  border-radius: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.2px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.form-sec .btn-primary:hover {
  background-color: #252b42;
  border: 1px solid #252b42;
}

.form-sec .iti {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form-sec .iti__country-list {
  left: -80px;
}
/* form-sec end */

/* conact info start */

.conact-info-card {
  height: 130px;
  width: 100%;
  background: #f6faff;
  border-radius: 8px;
  transition: all 0.5s;
}
.conact-info-card:hover {
  background: #185cff;
}

.conact-info-card h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #292d33;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.conact-info-card h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: #9497a1;
  transition: all 0.5s;
}

.conact-info-card:hover h3,
.conact-info-card:hover h4 {
  color: white;
}
.conact-info-card:hover svg path {
  fill: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
/* conact info end */

/* map start */
#map {
  width: 100%;
  height: 500px;
}
/* map end */

/* footer start */

footer .nav-link,
footer p {
  font-weight: 700;
  font-size: 14px !important;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #737373;
  padding-right: 0px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
footer .nav-link:hover {
  color: #185cff;
  margin-right: 5px;
}

footer h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #252b42;
}

.frist-col-footer p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.85);
}

footer .contact-icon i {
  color: #185cff;
  font-size: 18px;
  font-weight: 700 !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
footer .contact-icon i:hover {
  color: #252b42;
}

.contact-form p {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
}
.contact-form .form-control {
  background: #ffffff;
  border-radius: 8px;
}
input[type="email"] {
  direction: rtl;
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
  font-size: 12px !important;
  line-height: 14px;
  color: #c6c6c6 !important;
}

.botom-footer p {
  font-weight: 700;
  font-size: 13px !important;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #737373;
}
/* footer end */
